range

pure constructor(end: integer)

Construct a new range of values in steps of 1 from 0 to end

Since

0.6.0

Parameters

end

End value (exclusive) for this range.


pure constructor(start: integer, end: integer, [step: integer])

Constructs a new range with specified start, end and step size.

Since

0.6.0

Parameters

start

Start value for this range (inclusive).

end

End value for this range (exclusive).

step

Step size.